home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Apple II Sample Code / APW.SC / SC24Teach / Teach.p / UUtils.p < prev    next >
Encoding:
Text File  |  1990-06-24  |  1.1 KB  |  53 lines  |  [TEXT/pdos]

  1. {**********************************************************************
  2. {*
  3. {* Teach uUtils -- Version 3.0  (interface)
  4. {*
  5. {* Copyright (c)
  6. {* Apple Computer, Inc.  1986-1988
  7. {* All Rights Reserved.
  8. {*
  9. {* Developer Technical Support Apple II Sample Code
  10. {*
  11. {* This file contains the interface to the code which implements  
  12. {* various utility routines used by the Teach program.
  13. {*
  14. {**********************************************************************}
  15.  
  16. Unit uUtils;
  17.  
  18. INTERFACE
  19.  
  20. USES
  21.     types,
  22.     locator,
  23.     intMath,
  24.     memory,
  25.     QuickDraw,
  26.     events,
  27.     controls,
  28.     windows,
  29.     
  30.     uGlobals;
  31.     
  32.  
  33. CONST
  34.   srcCopy            =   $0000;
  35.   
  36. FUNCTION IntToString (i : Integer): STR255;
  37. FUNCTION LongToString (l : LongInt): STR255; { test }
  38. FUNCTION IsToolError: BOOLEAN;
  39. PROCEDURE INC(VAR anIndex : Integer);
  40. PROCEDURE Dec(VAR anIndex: Integer);
  41. function   PStringToNewC1String   (PStringPtr : String255Ptr) : handle;
  42.  
  43. procedure   C1OutputToC1Input (TheHandle : handle); 
  44. procedure   C1OutputToPString (TheHandle : handle); 
  45.  
  46.  
  47.  
  48. IMPLEMENTATION
  49.  
  50. {$i uUtils.inc.p }
  51.  
  52. END.
  53.